DateFormat(date [, mask ])Returns a formatted date/time value. If no mask is specified, DateFormat function returns date value using the dd-mmm-yy format.
See also Now, CreateDate, and ParseDateTime.
Date/time object in the period from 1601 AD to 9999 AD.
Set of characters that are used to show how ColdFusion should display the date:
d
-- Day of the month as digits with no leading zero for single-digit days.
dd
-- Day of the month as digits with a leading zero for single-digit days.
ddd
-- Day of the week as a three-letter abbreviation.
dddd
-- Day of the week as its full name.
m
-- Month as digits with no leading zero for single-digit months.
mm
-- Month as digits with a leading zero for single-digit months.
mmm
-- Month as a three-letter abbreviation.
mmmm
-- Month as its full name.
y
-- Year as last two digits with no leading zero for years less than 10.
yy
-- Year as last two digits with a leading zero for years less than 10.
yyyy
-- Year represented by four digits.
gg
-- Period/era string. Currently ignored, but reserved for future use.